/* 头部start */
.header-wrapper {
    width: 100%;
}

.header-wrapper .login-wrapper {
    height: 28px;
    width: 100%;
    background-color: #EFF1F8;
    display: flex;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    color: #2E3A59;
}

.header-wrapper .login-wrapper .login-content {
    width: 1200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-wrapper .login-wrapper .login-content .login-btn {
    position: relative;
    cursor: pointer;
}

.header-wrapper .login-wrapper .login-content .login-btn::after {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background: #878D9C;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.header-wrapper .login-wrapper .login-content .register-btn {
    margin: 0 30px;
    cursor: pointer;
}

.header-wrapper .login-wrapper .login-content .weibo-icon {
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.header-wrapper .nav-wrapper {
    height: 84px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-wrapper .nav-wrapper .nav-content {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper .nav-wrapper .nav-content .logo-img {
    display: block;
    width: 290px;
    height: 62px;
}

.header-wrapper .nav-wrapper .nav-content .nav-list {
    display: flex;
}

.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item {
    font-size: 16px;
    color: #2E3A59;
    min-width: 104px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin: 20px;
    cursor: pointer;
    position: relative;
}

.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: #E7E8EE;
    border-radius: 1px;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
}

.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item:last-child {
    margin-right: 0;
}

.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item:last-child::after {
    content: '';
    display: none;
    width: 0px;
    height: 0px;
}

.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item.current {
    background-color: #1479D7;
    border-radius: 17px;
    color: #fff;
}
.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item.currents {
    background-color: #1479D7;
    border-radius: 17px;
    color: #fff;
}
.header-wrapper .nav-wrapper .nav-content .nav-list .nav-item.currents a{
    color: #fff;
}
/* 头部end */

/* 脚部start */
.footer-wrapper {
    width: 100%;
    height: 274px;
    background-image: url(../images/index/bg_bottom.png);
    background-size: 100% 100%;
    background-position: 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-wrapper .footer-content {
    width: 1200px;
    height: 274px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.footer-wrapper .footer-content .footer-left {}

.footer-wrapper .footer-content .footer-left .line-item:last-child {
    margin-bottom: 0;
}

.footer-wrapper .footer-content .footer-left .line-item {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.footer-wrapper .footer-content .footer-left .line-item .view-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-wrapper .footer-content .footer-left .line-item .view-count-text {
    color: #fff;
    margin: 0 10px;
}

.footer-wrapper .footer-content .footer-left .line-item .view-count-num {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transform: skew(-10deg);
}

.footer-wrapper .footer-content .footer-right {
    display: flex;
}

.footer-wrapper .footer-content .footer-right .gg-icon {
    display: block;
    width: 38px;
    height: 47px;
    margin-left: 40px;
}
/* 脚部end */

/* 搜索start */
.search{
    width: 100%;
    height: 200px;
    background-image: url(../images/other/bg_Page.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search .search-content{
    width: 490px;
    height: 46px;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search .search-content .input{
    width: 444px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    color: #B5B7C0;
    border: 0;
    outline: none;
    padding-left: 10px;
    box-sizing: border-box;
}
.search .search-content .input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #B5B7C0;
}
.search .search-content .input:-moz-placeholder {
    color: #B5B7C0;
    /* Mozilla Firefox 4 to 18 */
}
.search .search-content .input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #B5B7C0;
}
.search .search-content .input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #B5B7C0;
}

.search .search-content .search-btn-wrapper{
    width: 60px;
    height: 46px;
    background: #1475D7;
    border-radius: 0px 4px 4px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search .search-content .search-btn-wrapper .search-icon{
    display: block;
    width: 24px;
    height: 24px;
}
/* 搜索end */

/* 位置提示 start*/
.position-wrapper{
    width: 1200px;
    height: 56px;
    background: #F9F9FA;
    border-radius: 0px 0px 8px 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.position-wrapper .position-icon-wrapper{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #2E3A59;
}
.position-wrapper .position-icon-wrapper .position-icon{
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-left: 10px;
}
.position-wrapper .position-name{
    font-size: 14px;
    color: #2E3A59;
}
.position-wrapper .position-name:last-child{
    text-decoration: underline;
    color: #1479D7;
}
.position-wrapper .next-icon{
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
}
/* 位置提示 end*/

/* 中间内容 start */
.mid-content{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.mid-content .mid-left{

}
.mid-content .mid-left .left-content{
    width: 240px;
    background: #F9F9FA;
    border-radius:8px;
    margin-bottom: 30px;
}
.mid-content .mid-left .left-content .page-title{
    width: 240px;
    height: 56px;
    line-height: 56px;
    background: linear-gradient(90deg, #1479D7 0%, #1470D7 100%);
    border-radius: 8px 8px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    padding-left: 20px;
    box-sizing: border-box;
}
.mid-content .mid-left .left-content .page-title-icon{
    display: block;
    height: 56px;
    width: 91px;
}
.mid-content .mid-left .left-content .line-item{
    width: 240px;
    height: 56px;
    cursor: pointer;
}
.mid-content .mid-left .left-content .line-item.current .item-title,
.mid-content .mid-left .left-content .line-item.current .item-go-icon{
    color: #1479D7;
}
.mid-content .mid-left .left-content .line-item .item-content{
    width: 200px;
    height: 56px;
    margin: 0 auto;
    border-bottom: 1px solid #A2A9BC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #2E3A59;
}
.mid-content .mid-left .left-content .line-item:last-child .item-content{
    border: 0;
}
.mid-content .mid-left .left-content .line-item .item-content .item-go-icon{
    font-family: Consolas;
    font-weight: bold;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
    background-color: #1479D7 !important;
}
#pageList{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
/* 中间内容 end */

/* 右侧固定start */
.fixed-wrapper{
    position: fixed;
    bottom: 100px;
    right: 20px;
}
.fixed-wrapper .fixed-item{
    border: 1px solid #D5DBEA;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
    background: #fff;
}
.fixed-wrapper .fixed-item:last-child{
    margin-bottom: 0;
}
.fixed-wrapper .fixed-item .a-item{
    border-bottom: 1px solid #D5DBEA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    position: relative;
}
.fixed-wrapper .fixed-item .a-item.to-top{
    display: none;
}
.fixed-wrapper .fixed-item .a-item:last-child{
    border: 0;
}
.fixed-wrapper .fixed-item .a-item .icon-home{
    width: 22px;
    height: 22px;
    display: block;

}
.fixed-wrapper .fixed-item .a-item .home-text{
    font-size: 14px;
    color: #A2A9BC;
    margin-top: 4px;
    text-align: center;
    line-height: 1.5;
}

.fixed-wrapper .fixed-item .a-item .show-content{
    width: 183px;
    height: 214px;
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/index/bg_qr.png);
    background-size: 100% 100%;
    display: none;
}
.fixed-wrapper .fixed-item .a-item .show-content .ewm-icon{
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #CDD5DD;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
}
/* 右侧固定end */
.mid-content .mid-right{
    flex: 1;
}


.mid-content .mid-left .left-content .line-item{
    height: auto;
}
.mid-content .mid-left .left-content .line-item .item-content{
    border-bottom:none;
}
.mid-content .mid-left .left-content .line-item .child-wrapper{
    width: 200px;
    margin: 0 auto;
    border-bottom: 1px solid #A2A9BC;
}
.mid-content .mid-left .left-content .line-item .child-wrapper .child-content{
    display: none;
}
.mid-content .mid-left .left-content .line-item:last-child .child-wrapper{
    border-bottom: none;
}
.mid-content .mid-left .left-content .line-item .child-wrapper .item-child{
    padding-left: 10px;
    font-size: 15px;
    margin-bottom: 14px;
}
.mid-content .mid-left .left-content {
    padding-bottom: 1px;
}
.mid-content .mid-left .left-content .line-item.current .child-content{
    display: block;
}